github.com/klauspost/compress/zstd.encoderState.current (field)

19 uses

	github.com/klauspost/compress/zstd (current package)
		enc_jobs.go#L265: 			s.current = e.encodeAll(s.encoder, js.filling, s.current[:0])
		enc_jobs.go#L267: 			n2, s.err = s.w.Write(s.current)
		enc_jobs.go#L273: 			s.current = s.current[:0]
		encoder.go#L47: 	current          []byte
		encoder.go#L130: 		if cap(s.current) == 0 {
		encoder.go#L131: 			s.current = make([]byte, 0, e.o.blockSize)
		encoder.go#L136: 		s.current = s.current[:0]
		encoder.go#L304: 			s.current = e.encodeAll(s.encoder, s.filling, s.current[:0])
		encoder.go#L306: 			n2, s.err = s.w.Write(s.current)
		encoder.go#L312: 			s.current = s.current[:0]
		encoder.go#L387: 	s.filling, s.current, s.previous = s.previous[:0], s.filling, s.current
		encoder.go#L388: 	s.nInput += int64(len(s.current))
		encoder.go#L435: 	}(s.current)